runtime.m.locks (field)

47 uses

	runtime (current package)
		lock_spinbit.go#L155: 	if gp.m.locks < 0 {
		lock_spinbit.go#L158: 	gp.m.locks++
		lock_spinbit.go#L272: 	gp.m.locks--
		lock_spinbit.go#L273: 	if gp.m.locks < 0 {
		lock_spinbit.go#L276: 	if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack
		mgc.go#L635: 	if gp := getg(); gp == mp.g0 || mp.locks > 1 || mp.preemptoff != "" {
		mgcmark.go#L427: 	if mp := getg().m; mp.locks > 0 || mp.preemptoff != "" {
		mgcsweep.go#L356: 	gp.m.locks++
		mgcsweep.go#L362: 		gp.m.locks--
		mgcsweep.go#L440: 	gp.m.locks--
		mgcsweep.go#L462: 	if gp.m.locks == 0 && gp.m.mallocing == 0 && gp != gp.m.g0 {
		mgcsweep.go#L501: 	if gp.m.locks == 0 && gp.m.mallocing == 0 && gp != gp.m.g0 {
		mprof.go#L776: 	if gp := getg(); gp.m.locks == 1 && gp.m.mLockProfile.haveStack {
		panic.go#L774: 	if gp.m.locks != 0 {
		panic.go#L1363: 	if gp.m.locks < 0 {
		panic.go#L1364: 		gp.m.locks = 1
		panic.go#L1464: 	if mp.locks != 1 || mp.mallocing != 0 || mp.throwing != throwTypeNone || mp.preemptoff != "" || mp.dying != 0 {
		preempt.go#L288: 	return mp.locks == 0 && mp.mallocing == 0 && mp.preemptoff == "" && mp.p.ptr().status == _Prunning
		print.go#L67: 	mp.locks++ // do not reschedule between printlock++ and lock(&debuglock).
		print.go#L72: 	mp.locks-- // now we know debuglock is held and holding up mp.locks for us.
		proc.go#L1571: 	if gp.m.locks > 0 {
		proc.go#L2915: 	if gp.m.locks != 0 {
		proc.go#L4012: 	if mp.locks != 0 {
		proc.go#L4463: 	gp.m.locks++
		proc.go#L4529: 	gp.m.locks--
		proc.go#L4610: 	gp.m.locks++ // see comment in entersyscall
		proc.go#L4652: 	gp.m.locks--
		proc.go#L4687: 	gp.m.locks++ // see comment in entersyscall
		proc.go#L4735: 		gp.m.locks--
		proc.go#L4753: 	gp.m.locks--
		proc.go#L4917: 	gp.m.locks++
		proc.go#L4948: 	gp.m.locks--
		proc.go#L5601: 	gp.m.locks++
		proc.go#L5625: 	gp.m.locks--
		proc.go#L6459: 		print(" mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, " locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=")
		proc.go#L7157: 	mp.locks++
		proc.go#L7175: 	gp.m.locks--
		rand.go#L176: 		mp.locks++ // hold m even though c.Refill may do stack split checks
		rand.go#L178: 		mp.locks--
		runtime1.go#L607: 	gp.m.locks++
		runtime1.go#L614: 	mp.locks--
		runtime1.go#L615: 	if mp.locks == 0 && gp.preempt {
		runtime2.go#L550: 	locks           int32
		sema.go#L260: 		if s.ticket == 1 && getg().m.locks == 0 {
		stack.go#L1058: 		if thisg.m.p == 0 && thisg.m.locks == 0 {
		vgetrandom_linux.go#L110: 		mp.locks++
		vgetrandom_linux.go#L112: 		mp.locks--